]> snippets.scripts.mit.edu Git - Scripts/git/.git/blob - sipbmp3-itunes.bak/sipbmp3 - Get Queue.applescript
Changed the sipbmp3-itunes folder into a submodule, so that the repo can reside in...
[Scripts/git/.git] / sipbmp3-itunes.bak / sipbmp3 - Get Queue.applescript
1 -- -----------------
2 -- iTunes -> sipbmp3
3 -- -----------------
4 -- This is a simple little script which gets the current queue on sipbmp3--
5 -- Changelog:
6 --
7 -- 10 Oct 2009 -> pquimby created this script
8 --
9 -- Installation:
10 -- For installation instructions see the INSTALL file in the snippets/sipbmp3-iTunes folder--
11
12 --
13 -- Usage:
14 --
15 -- Run this script from iTunes
16
17 set message to (do shell script "lpq -Psipbmp3")
18 tell application "iTunes"
19         display dialog "sipbmp3 currently is playing: " & "
20 " & message buttons "OK" default button "OK"
21 end tell